home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Unsupported Libraries / CustomIO_Lib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  522 b   |  31 lines  |  [TEXT/MPS ]

  1. /*
  2.  * CustomIO_Lib.h
  3.  */
  4. #include "QD3D.h"
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif  /* __cplusplus */
  9.  
  10. TQ3Status CustomAttribute_Register(
  11.     void);
  12.  
  13. TQ3Status CustomAttribute_Unregister(
  14.     void);
  15.  
  16. TQ3ElementType CustomAttribute_GetType(
  17.     void);
  18.  
  19. /* Use CustomAttribute_GetType to get type */
  20. #define kCustomAttributeType    ((TQ3AttributeType) 0xF00DF00D)
  21.  
  22. typedef struct CustomAttributeRecord {
  23.     TQ3DisplayGroupObject    clickModel;
  24.     TQ3Boolean                isOn;        
  25. } CustomAttributeRecord;
  26.  
  27. #ifdef __cplusplus
  28. }
  29. #endif    /* __cplusplus */
  30.  
  31.